home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2007 September / PCWSEP07.iso / Software / Linux / Linux Mint 3.0 Light / LinuxMint-3.0-Light.iso / casper / filesystem.squashfs / usr / lib / python2.4 / cgi.py < prev    next >
Encoding:
Python Source  |  2007-04-12  |  34.0 KB  |  1,066 lines

  1. #! /usr/bin/python2.4
  2.  
  3. # NOTE: the above "/usr/local/bin/python" is NOT a mistake.  It is
  4. # intentionally NOT "/usr/bin/env python".  On many systems
  5. # (e.g. Solaris), /usr/local/bin is not in $PATH as passed to CGI
  6. # scripts, and /usr/local/bin is the default directory where Python is
  7. # installed, so /usr/bin/env would be unable to find python.  Granted,
  8. # binary installations by Linux vendors often install Python in
  9. # /usr/bin.  So let those vendors patch cgi.py to match their choice
  10. # of installation.
  11.  
  12. """Support module for CGI (Common Gateway Interface) scripts.
  13.  
  14. This module defines a number of utilities for use by CGI scripts
  15. written in Python.
  16. """
  17.  
  18. # XXX Perhaps there should be a slimmed version that doesn't contain
  19. # all those backwards compatible and debugging classes and functions?
  20.  
  21. # History
  22. # -------
  23. #
  24. # Michael McLay started this module.  Steve Majewski changed the
  25. # interface to SvFormContentDict and FormContentDict.  The multipart
  26. # parsing was inspired by code submitted by Andreas Paepcke.  Guido van
  27. # Rossum rewrote, reformatted and documented the module and is currently
  28. # responsible for its maintenance.
  29. #
  30.  
  31. __version__ = "2.6"
  32.  
  33.  
  34. # Imports
  35. # =======
  36.  
  37. import sys
  38. import os
  39. import urllib
  40. import mimetools
  41. import rfc822
  42. import UserDict
  43. from StringIO import StringIO
  44.  
  45. __all__ = ["MiniFieldStorage", "FieldStorage", "FormContentDict",
  46.            "SvFormContentDict", "InterpFormContentDict", "FormContent",
  47.            "parse", "parse_qs", "parse_qsl", "parse_multipart",
  48.            "parse_header", "print_exception", "print_environ",
  49.            "print_form", "print_directory", "print_arguments",
  50.            "print_environ_usage", "escape"]
  51.  
  52. # Logging support
  53. # ===============
  54.  
  55. logfile = ""            # Filename to log to, if not empty
  56. logfp = None            # File object to log to, if not None
  57.  
  58. def initlog(*allargs):
  59.     """Write a log message, if there is a log file.
  60.  
  61.     Even though this function is called initlog(), you should always
  62.     use log(); log is a variable that is set either to initlog
  63.     (initially), to dolog (once the log file has been opened), or to
  64.     nolog (when logging is disabled).
  65.  
  66.     The first argument is a format string; the remaining arguments (if
  67.     any) are arguments to the % operator, so e.g.
  68.         log("%s: %s", "a", "b")
  69.     will write "a: b" to the log file, followed by a newline.
  70.  
  71.     If the global logfp is not None, it should be a file object to
  72.     which log data is written.
  73.  
  74.     If the global logfp is None, the global logfile may be a string
  75.     giving a filename to open, in append mode.  This file should be
  76.     world writable!!!  If the file can't be opened, logging is
  77.     silently disabled (since there is no safe place where we could
  78.     send an error message).
  79.  
  80.     """
  81.     global logfp, log
  82.     if logfile and not logfp:
  83.         try:
  84.             logfp = open(logfile, "a")
  85.         except IOError:
  86.             pass
  87.     if not logfp:
  88.         log = nolog
  89.     else:
  90.         log = dolog
  91.     log(*allargs)
  92.  
  93. def dolog(fmt, *args):
  94.     """Write a log message to the log file.  See initlog() for docs."""
  95.     logfp.write(fmt%args + "\n")
  96.  
  97. def nolog(*allargs):
  98.     """Dummy function, assigned to log when logging is disabled."""
  99.     pass
  100.  
  101. log = initlog           # The current logging function
  102.  
  103.  
  104. # Parsing functions
  105. # =================
  106.  
  107. # Maximum input we will accept when REQUEST_METHOD is POST
  108. # 0 ==> unlimited input
  109. maxlen = 0
  110.  
  111. def parse(fp=None, environ=os.environ, keep_blank_values=0, strict_parsing=0):
  112.     """Parse a query in the environment or from a file (default stdin)
  113.  
  114.         Arguments, all optional:
  115.  
  116.         fp              : file pointer; default: sys.stdin
  117.  
  118.         environ         : environment dictionary; default: os.environ
  119.  
  120.         keep_blank_values: flag indicating whether blank values in
  121.             URL encoded forms should be treated as blank strings.
  122.             A true value indicates that blanks should be retained as
  123.             blank strings.  The default false value indicates that
  124.             blank values are to be ignored and treated as if they were
  125.             not included.
  126.  
  127.         strict_parsing: flag indicating what to do with parsing errors.
  128.             If false (the default), errors are silently ignored.
  129.             If true, errors raise a ValueError exception.
  130.     """
  131.     if fp is None:
  132.         fp = sys.stdin
  133.     if not 'REQUEST_METHOD' in environ:
  134.         environ['REQUEST_METHOD'] = 'GET'       # For testing stand-alone
  135.     if environ['REQUEST_METHOD'] == 'POST':
  136.         ctype, pdict = parse_header(environ['CONTENT_TYPE'])
  137.         if ctype == 'multipart/form-data':
  138.             return parse_multipart(fp, pdict)
  139.         elif ctype == 'application/x-www-form-urlencoded':
  140.             clength = int(environ['CONTENT_LENGTH'])
  141.             if maxlen and clength > maxlen:
  142.                 raise ValueError, 'Maximum content length exceeded'
  143.             qs = fp.read(clength)
  144.         else:
  145.             qs = ''                     # Unknown content-type
  146.         if 'QUERY_STRING' in environ:
  147.             if qs: qs = qs + '&'
  148.             qs = qs + environ['QUERY_STRING']
  149.         elif sys.argv[1:]:
  150.             if qs: qs = qs + '&'
  151.             qs = qs + sys.argv[1]
  152.         environ['QUERY_STRING'] = qs    # XXX Shouldn't, really
  153.     elif 'QUERY_STRING' in environ:
  154.         qs = environ['QUERY_STRING']
  155.     else:
  156.         if sys.argv[1:]:
  157.             qs = sys.argv[1]
  158.         else:
  159.             qs = ""
  160.         environ['QUERY_STRING'] = qs    # XXX Shouldn't, really
  161.     return parse_qs(qs, keep_blank_values, strict_parsing)
  162.  
  163.  
  164. def parse_qs(qs, keep_blank_values=0, strict_parsing=0):
  165.     """Parse a query given as a string argument.
  166.  
  167.         Arguments:
  168.  
  169.         qs: URL-encoded query string to be parsed
  170.  
  171.         keep_blank_values: flag indicating whether blank values in
  172.             URL encoded queries should be treated as blank strings.
  173.             A true value indicates that blanks should be retained as
  174.             blank strings.  The default false value indicates that
  175.             blank values are to be ignored and treated as if they were
  176.             not included.
  177.  
  178.         strict_parsing: flag indicating what to do with parsing errors.
  179.             If false (the default), errors are silently ignored.
  180.             If true, errors raise a ValueError exception.
  181.     """
  182.     dict = {}
  183.     for name, value in parse_qsl(qs, keep_blank_values, strict_parsing):
  184.         if name in dict:
  185.             dict[name].append(value)
  186.         else:
  187.             dict[name] = [value]
  188.     return dict
  189.  
  190. def parse_qsl(qs, keep_blank_values=0, strict_parsing=0):
  191.     """Parse a query given as a string argument.
  192.  
  193.     Arguments:
  194.  
  195.     qs: URL-encoded query string to be parsed
  196.  
  197.     keep_blank_values: flag indicating whether blank values in
  198.         URL encoded queries should be treated as blank strings.  A
  199.         true value indicates that blanks should be retained as blank
  200.         strings.  The default false value indicates that blank values
  201.         are to be ignored and treated as if they were  not included.
  202.  
  203.     strict_parsing: flag indicating what to do with parsing errors. If
  204.         false (the default), errors are silently ignored. If true,
  205.         errors raise a ValueError exception.
  206.  
  207.     Returns a list, as G-d intended.
  208.     """
  209.     pairs = [s2 for s1 in qs.split('&') for s2 in s1.split(';')]
  210.     r = []
  211.     for name_value in pairs:
  212.         if not name_value and not strict_parsing:
  213.             continue
  214.         nv = name_value.split('=', 1)
  215.         if len(nv) != 2:
  216.             if strict_parsing:
  217.                 raise ValueError, "bad query field: %r" % (name_value,)
  218.             # Handle case of a control-name with no equal sign
  219.             if keep_blank_values:
  220.                 nv.append('')
  221.             else:
  222.                 continue
  223.         if len(nv[1]) or keep_blank_values:
  224.             name = urllib.unquote(nv[0].replace('+', ' '))
  225.             value = urllib.unquote(nv[1].replace('+', ' '))
  226.             r.append((name, value))
  227.  
  228.     return r
  229.  
  230.  
  231. def parse_multipart(fp, pdict):
  232.     """Parse multipart input.
  233.  
  234.     Arguments:
  235.     fp   : input file
  236.     pdict: dictionary containing other parameters of conten-type header
  237.  
  238.     Returns a dictionary just like parse_qs(): keys are the field names, each
  239.     value is a list of values for that field.  This is easy to use but not
  240.     much good if you are expecting megabytes to be uploaded -- in that case,
  241.     use the FieldStorage class instead which is much more flexible.  Note
  242.     that content-type is the raw, unparsed contents of the content-type
  243.     header.
  244.  
  245.     XXX This does not parse nested multipart parts -- use FieldStorage for
  246.     that.
  247.  
  248.     XXX This should really be subsumed by FieldStorage altogether -- no
  249.     point in having two implementations of the same parsing algorithm.
  250.     Also, FieldStorage protects itself better against certain DoS attacks
  251.     by limiting the size of the data read in one chunk.  The API here
  252.     does not support that kind of protection.  This also affects parse()
  253.     since it can call parse_multipart().
  254.  
  255.     """
  256.     boundary = ""
  257.     if 'boundary' in pdict:
  258.         boundary = pdict['boundary']
  259.     if not valid_boundary(boundary):
  260.         raise ValueError,  ('Invalid boundary in multipart form: %r'
  261.                             % (boundary,))
  262.  
  263.     nextpart = "--" + boundary
  264.     lastpart = "--" + boundary + "--"
  265.     partdict = {}
  266.     terminator = ""
  267.  
  268.     while terminator != lastpart:
  269.         bytes = -1
  270.         data = None
  271.         if terminator:
  272.             # At start of next part.  Read headers first.
  273.             headers = mimetools.Message(fp)
  274.             clength = headers.getheader('content-length')
  275.             if clength:
  276.                 try:
  277.                     bytes = int(clength)
  278.                 except ValueError:
  279.                     pass
  280.             if bytes > 0:
  281.                 if maxlen and bytes > maxlen:
  282.                     raise ValueError, 'Maximum content length exceeded'
  283.                 data = fp.read(bytes)
  284.             else:
  285.                 data = ""
  286.         # Read lines until end of part.
  287.         lines = []
  288.         while 1:
  289.             line = fp.readline()
  290.             if not line:
  291.                 terminator = lastpart # End outer loop
  292.                 break
  293.             if line[:2] == "--":
  294.                 terminator = line.strip()
  295.                 if terminator in (nextpart, lastpart):
  296.                     break
  297.             lines.append(line)
  298.         # Done with part.
  299.         if data is None:
  300.             continue
  301.         if bytes < 0:
  302.             if lines:
  303.                 # Strip final line terminator
  304.                 line = lines[-1]
  305.                 if line[-2:] == "\r\n":
  306.                     line = line[:-2]
  307.                 elif line[-1:] == "\n":
  308.                     line = line[:-1]
  309.                 lines[-1] = line
  310.                 data = "".join(lines)
  311.         line = headers['content-disposition']
  312.         if not line:
  313.             continue
  314.         key, params = parse_header(line)
  315.         if key != 'form-data':
  316.             continue
  317.         if 'name' in params:
  318.             name = params['name']
  319.         else:
  320.             continue
  321.         if name in partdict:
  322.             partdict[name].append(data)
  323.         else:
  324.             partdict[name] = [data]
  325.  
  326.     return partdict
  327.  
  328.  
  329. def parse_header(line):
  330.     """Parse a Content-type like header.
  331.  
  332.     Return the main content-type and a dictionary of options.
  333.  
  334.     """
  335.     plist = map(lambda x: x.strip(), line.split(';'))
  336.     key = plist.pop(0).lower()
  337.     pdict = {}
  338.     for p in plist:
  339.         i = p.find('=')
  340.         if i >= 0:
  341.             name = p[:i].strip().lower()
  342.             value = p[i+1:].strip()
  343.             if len(value) >= 2 and value[0] == value[-1] == '"':
  344.                 value = value[1:-1]
  345.                 value = value.replace('\\\\', '\\').replace('\\"', '"')
  346.             pdict[name] = value
  347.     return key, pdict
  348.  
  349.  
  350. # Classes for field storage
  351. # =========================
  352.  
  353. class MiniFieldStorage:
  354.  
  355.     """Like FieldStorage, for use when no file uploads are possible."""
  356.  
  357.     # Dummy attributes
  358.     filename = None
  359.     list = None
  360.     type = None
  361.     file = None
  362.     type_options = {}
  363.     disposition = None
  364.     disposition_options = {}
  365.     headers = {}
  366.  
  367.     def __init__(self, name, value):
  368.         """Constructor from field name and value."""
  369.         self.name = name
  370.         self.value = value
  371.         # self.file = StringIO(value)
  372.  
  373.     def __repr__(self):
  374.         """Return printable representation."""
  375.         return "MiniFieldStorage(%r, %r)" % (self.name, self.value)
  376.  
  377.  
  378. class FieldStorage:
  379.  
  380.     """Store a sequence of fields, reading multipart/form-data.
  381.  
  382.     This class provides naming, typing, files stored on disk, and
  383.     more.  At the top level, it is accessible like a dictionary, whose
  384.     keys are the field names.  (Note: None can occur as a field name.)
  385.     The items are either a Python list (if there's multiple values) or
  386.     another FieldStorage or MiniFieldStorage object.  If it's a single
  387.     object, it has the following attributes:
  388.  
  389.     name: the field name, if specified; otherwise None
  390.  
  391.     filename: the filename, if specified; otherwise None; this is the
  392.         client side filename, *not* the file name on which it is
  393.         stored (that's a temporary file you don't deal with)
  394.  
  395.     value: the value as a *string*; for file uploads, this
  396.         transparently reads the file every time you request the value
  397.  
  398.     file: the file(-like) object from which you can read the data;
  399.         None if the data is stored a simple string
  400.  
  401.     type: the content-type, or None if not specified
  402.  
  403.     type_options: dictionary of options specified on the content-type
  404.         line
  405.  
  406.     disposition: content-disposition, or None if not specified
  407.  
  408.     disposition_options: dictionary of corresponding options
  409.  
  410.     headers: a dictionary(-like) object (sometimes rfc822.Message or a
  411.         subclass thereof) containing *all* headers
  412.  
  413.     The class is subclassable, mostly for the purpose of overriding
  414.     the make_file() method, which is called internally to come up with
  415.     a file open for reading and writing.  This makes it possible to
  416.     override the default choice of storing all files in a temporary
  417.     directory and unlinking them as soon as they have been opened.
  418.  
  419.     """
  420.  
  421.     def __init__(self, fp=None, headers=None, outerboundary="",
  422.                  environ=os.environ, keep_blank_values=0, strict_parsing=0):
  423.         """Constructor.  Read multipart/* until last part.
  424.  
  425.         Arguments, all optional:
  426.  
  427.         fp              : file pointer; default: sys.stdin
  428.             (not used when the request method is GET)
  429.  
  430.         headers         : header dictionary-like object; default:
  431.             taken from environ as per CGI spec
  432.  
  433.         outerboundary   : terminating multipart boundary
  434.             (for internal use only)
  435.  
  436.         environ         : environment dictionary; default: os.environ
  437.  
  438.         keep_blank_values: flag indicating whether blank values in
  439.             URL encoded forms should be treated as blank strings.
  440.             A true value indicates that blanks should be retained as
  441.             blank strings.  The default false value indicates that
  442.             blank values are to be ignored and treated as if they were
  443.             not included.
  444.  
  445.         strict_parsing: flag indicating what to do with parsing errors.
  446.             If false (the default), errors are silently ignored.
  447.             If true, errors raise a ValueError exception.
  448.  
  449.         """
  450.         method = 'GET'
  451.         self.keep_blank_values = keep_blank_values
  452.         self.strict_parsing = strict_parsing
  453.         if 'REQUEST_METHOD' in environ:
  454.             method = environ['REQUEST_METHOD'].upper()
  455.         if method == 'GET' or method == 'HEAD':
  456.             if 'QUERY_STRING' in environ:
  457.                 qs = environ['QUERY_STRING']
  458.             elif sys.argv[1:]:
  459.                 qs = sys.argv[1]
  460.             else:
  461.                 qs = ""
  462.             fp = StringIO(qs)
  463.             if headers is None:
  464.                 headers = {'content-type':
  465.                            "application/x-www-form-urlencoded"}
  466.         if headers is None:
  467.             headers = {}
  468.             if method == 'POST':
  469.                 # Set default content-type for POST to what's traditional
  470.                 headers['content-type'] = "application/x-www-form-urlencoded"
  471.             if 'CONTENT_TYPE' in environ:
  472.                 headers['content-type'] = environ['CONTENT_TYPE']
  473.             if 'CONTENT_LENGTH' in environ:
  474.                 headers['content-length'] = environ['CONTENT_LENGTH']
  475.         self.fp = fp or sys.stdin
  476.         self.headers = headers
  477.         self.outerboundary = outerboundary
  478.  
  479.         # Process content-disposition header
  480.         cdisp, pdict = "", {}
  481.         if 'content-disposition' in self.headers:
  482.             cdisp, pdict = parse_header(self.headers['content-disposition'])
  483.         self.disposition = cdisp
  484.         self.disposition_options = pdict
  485.         self.name = None
  486.         if 'name' in pdict:
  487.             self.name = pdict['name']
  488.         self.filename = None
  489.         if 'filename' in pdict:
  490.             self.filename = pdict['filename']
  491.  
  492.         # Process content-type header
  493.         #
  494.         # Honor any existing content-type header.  But if there is no
  495.         # content-type header, use some sensible defaults.  Assume
  496.         # outerboundary is "" at the outer level, but something non-false
  497.         # inside a multi-part.  The default for an inner part is text/plain,
  498.         # but for an outer part it should be urlencoded.  This should catch
  499.         # bogus clients which erroneously forget to include a content-type
  500.         # header.
  501.         #
  502.         # See below for what we do if there does exist a content-type header,
  503.         # but it happens to be something we don't understand.
  504.         if 'content-type' in self.headers:
  505.             ctype, pdict = parse_header(self.headers['content-type'])
  506.         elif self.outerboundary or method != 'POST':
  507.             ctype, pdict = "text/plain", {}
  508.         else:
  509.             ctype, pdict = 'application/x-www-form-urlencoded', {}
  510.         self.type = ctype
  511.         self.type_options = pdict
  512.         self.innerboundary = ""
  513.         if 'boundary' in pdict:
  514.             self.innerboundary = pdict['boundary']
  515.         clen = -1
  516.         if 'content-length' in self.headers:
  517.             try:
  518.                 clen = int(self.headers['content-length'])
  519.             except ValueError:
  520.                 pass
  521.             if maxlen and clen > maxlen:
  522.                 raise ValueError, 'Maximum content length exceeded'
  523.         self.length = clen
  524.  
  525.         self.list = self.file = None
  526.         self.done = 0
  527.         if ctype == 'application/x-www-form-urlencoded':
  528.             self.read_urlencoded()
  529.         elif ctype[:10] == 'multipart/':
  530.             self.read_multi(environ, keep_blank_values, strict_parsing)
  531.         else:
  532.             self.read_single()
  533.  
  534.     def __repr__(self):
  535.         """Return a printable representation."""
  536.         return "FieldStorage(%r, %r, %r)" % (
  537.                 self.name, self.filename, self.value)
  538.  
  539.     def __iter__(self):
  540.         return iter(self.keys())
  541.  
  542.     def __getattr__(self, name):
  543.         if name != 'value':
  544.             raise AttributeError, name
  545.         if self.file:
  546.             self.file.seek(0)
  547.             value = self.file.read()
  548.             self.file.seek(0)
  549.         elif self.list is not None:
  550.             value = self.list
  551.         else:
  552.             value = None
  553.         return value
  554.  
  555.     def __getitem__(self, key):
  556.         """Dictionary style indexing."""
  557.         if self.list is None:
  558.             raise TypeError, "not indexable"
  559.         found = []
  560.         for item in self.list:
  561.             if item.name == key: found.append(item)
  562.         if not found:
  563.             raise KeyError, key
  564.         if len(found) == 1:
  565.             return found[0]
  566.         else:
  567.             return found
  568.  
  569.     def getvalue(self, key, default=None):
  570.         """Dictionary style get() method, including 'value' lookup."""
  571.         if key in self:
  572.             value = self[key]
  573.             if type(value) is type([]):
  574.                 return map(lambda v: v.value, value)
  575.             else:
  576.                 return value.value
  577.         else:
  578.             return default
  579.  
  580.     def getfirst(self, key, default=None):
  581.         """ Return the first value received."""
  582.         if key in self:
  583.             value = self[key]
  584.             if type(value) is type([]):
  585.                 return value[0].value
  586.             else:
  587.                 return value.value
  588.         else:
  589.             return default
  590.  
  591.     def getlist(self, key):
  592.         """ Return list of received values."""
  593.         if key in self:
  594.             value = self[key]
  595.             if type(value) is type([]):
  596.                 return map(lambda v: v.value, value)
  597.             else:
  598.                 return [value.value]
  599.         else:
  600.             return []
  601.  
  602.     def keys(self):
  603.         """Dictionary style keys() method."""
  604.         if self.list is None:
  605.             raise TypeError, "not indexable"
  606.         keys = []
  607.         for item in self.list:
  608.             if item.name not in keys: keys.append(item.name)
  609.         return keys
  610.  
  611.     def has_key(self, key):
  612.         """Dictionary style has_key() method."""
  613.         if self.list is None:
  614.             raise TypeError, "not indexable"
  615.         for item in self.list:
  616.             if item.name == key: return True
  617.         return False
  618.  
  619.     def __contains__(self, key):
  620.         """Dictionary style __contains__ method."""
  621.         if self.list is None:
  622.             raise TypeError, "not indexable"
  623.         for item in self.list:
  624.             if item.name == key: return True
  625.         return False
  626.  
  627.     def __len__(self):
  628.         """Dictionary style len(x) support."""
  629.         return len(self.keys())
  630.  
  631.     def read_urlencoded(self):
  632.         """Internal: read data in query string format."""
  633.         qs = self.fp.read(self.length)
  634.         self.list = list = []
  635.         for key, value in parse_qsl(qs, self.keep_blank_values,
  636.                                     self.strict_parsing):
  637.             list.append(MiniFieldStorage(key, value))
  638.         self.skip_lines()
  639.  
  640.     FieldStorageClass = None
  641.  
  642.     def read_multi(self, environ, keep_blank_values, strict_parsing):
  643.         """Internal: read a part that is itself multipart."""
  644.         ib = self.innerboundary
  645.         if not valid_boundary(ib):
  646.             raise ValueError, 'Invalid boundary in multipart form: %r' % (ib,)
  647.         self.list = []
  648.         klass = self.FieldStorageClass or self.__class__
  649.         part = klass(self.fp, {}, ib,
  650.                      environ, keep_blank_values, strict_parsing)
  651.         # Throw first part away
  652.         while not part.done:
  653.             headers = rfc822.Message(self.fp)
  654.             part = klass(self.fp, headers, ib,
  655.                          environ, keep_blank_values, strict_parsing)
  656.             self.list.append(part)
  657.         self.skip_lines()
  658.  
  659.     def read_single(self):
  660.         """Internal: read an atomic part."""
  661.         if self.length >= 0:
  662.             self.read_binary()
  663.             self.skip_lines()
  664.         else:
  665.             self.read_lines()
  666.         self.file.seek(0)
  667.  
  668.     bufsize = 8*1024            # I/O buffering size for copy to file
  669.  
  670.     def read_binary(self):
  671.         """Internal: read binary data."""
  672.         self.file = self.make_file('b')
  673.         todo = self.length
  674.         if todo >= 0:
  675.             while todo > 0:
  676.                 data = self.fp.read(min(todo, self.bufsize))
  677.                 if not data:
  678.                     self.done = -1
  679.                     break
  680.                 self.file.write(data)
  681.                 todo = todo - len(data)
  682.  
  683.     def read_lines(self):
  684.         """Internal: read lines until EOF or outerboundary."""
  685.         self.file = self.__file = StringIO()
  686.         if self.outerboundary:
  687.             self.read_lines_to_outerboundary()
  688.         else:
  689.             self.read_lines_to_eof()
  690.  
  691.     def __write(self, line):
  692.         if self.__file is not None:
  693.             if self.__file.tell() + len(line) > 1000:
  694.                 self.file = self.make_file('')
  695.                 self.file.write(self.__file.getvalue())
  696.                 self.__file = None
  697.         self.file.write(line)
  698.  
  699.     def read_lines_to_eof(self):
  700.         """Internal: read lines until EOF."""
  701.         while 1:
  702.             line = self.fp.readline(1<<16)
  703.             if not line:
  704.                 self.done = -1
  705.                 break
  706.             self.__write(line)
  707.  
  708.     def read_lines_to_outerboundary(self):
  709.         """Internal: read lines until outerboundary."""
  710.         next = "--" + self.outerboundary
  711.         last = next + "--"
  712.         delim = ""
  713.         last_line_lfend = True
  714.         while 1:
  715.             line = self.fp.readline(1<<16)
  716.             if not line:
  717.                 self.done = -1
  718.                 break
  719.             if line[:2] == "--" and last_line_lfend:
  720.                 strippedline = line.strip()
  721.                 if strippedline == next:
  722.                     break
  723.                 if strippedline == last:
  724.                     self.done = 1
  725.                     break
  726.             odelim = delim
  727.             if line[-2:] == "\r\n":
  728.                 delim = "\r\n"
  729.                 line = line[:-2]
  730.                 last_line_lfend = True
  731.             elif line[-1] == "\n":
  732.                 delim = "\n"
  733.                 line = line[:-1]
  734.                 last_line_lfend = True
  735.             else:
  736.                 delim = ""
  737.                 last_line_lfend = False
  738.             self.__write(odelim + line)
  739.  
  740.     def skip_lines(self):
  741.         """Internal: skip lines until outer boundary if defined."""
  742.         if not self.outerboundary or self.done:
  743.             return
  744.         next = "--" + self.outerboundary
  745.         last = next + "--"
  746.         last_line_lfend = True
  747.         while 1:
  748.             line = self.fp.readline(1<<16)
  749.             if not line:
  750.                 self.done = -1
  751.                 break
  752.             if line[:2] == "--" and last_line_lfend:
  753.                 strippedline = line.strip()
  754.                 if strippedline == next:
  755.                     break
  756.                 if strippedline == last:
  757.                     self.done = 1
  758.                     break
  759.             last_line_lfend = line.endswith('\n')
  760.  
  761.     def make_file(self, binary=None):
  762.         """Overridable: return a readable & writable file.
  763.  
  764.         The file will be used as follows:
  765.         - data is written to it
  766.         - seek(0)
  767.         - data is read from it
  768.  
  769.         The 'binary' argument is unused -- the file is always opened
  770.         in binary mode.
  771.  
  772.         This version opens a temporary file for reading and writing,
  773.         and immediately deletes (unlinks) it.  The trick (on Unix!) is
  774.         that the file can still be used, but it can't be opened by
  775.         another process, and it will automatically be deleted when it
  776.         is closed or when the current process terminates.
  777.  
  778.         If you want a more permanent file, you derive a class which
  779.         overrides this method.  If you want a visible temporary file
  780.         that is nevertheless automatically deleted when the script
  781.         terminates, try defining a __del__ method in a derived class
  782.         which unlinks the temporary files you have created.
  783.  
  784.         """
  785.         import tempfile
  786.         return tempfile.TemporaryFile("w+b")
  787.  
  788.  
  789.  
  790. # Backwards Compatibility Classes
  791. # ===============================
  792.  
  793. class FormContentDict(UserDict.UserDict):
  794.     """Form content as dictionary with a list of values per field.
  795.  
  796.     form = FormContentDict()
  797.  
  798.     form[key] -> [value, value, ...]
  799.     key in form -> Boolean
  800.     form.keys() -> [key, key, ...]
  801.     form.values() -> [[val, val, ...], [val, val, ...], ...]
  802.     form.items() ->  [(key, [val, val, ...]), (key, [val, val, ...]), ...]
  803.     form.dict == {key: [val, val, ...], ...}
  804.  
  805.     """
  806.     def __init__(self, environ=os.environ):
  807.         self.dict = self.data = parse(environ=environ)
  808.         self.query_string = environ['QUERY_STRING']
  809.  
  810.  
  811. class SvFormContentDict(FormContentDict):
  812.     """Form content as dictionary expecting a single value per field.
  813.  
  814.     If you only expect a single value for each field, then form[key]
  815.     will return that single value.  It will raise an IndexError if
  816.     that expectation is not true.  If you expect a field to have
  817.     possible multiple values, than you can use form.getlist(key) to
  818.     get all of the values.  values() and items() are a compromise:
  819.     they return single strings where there is a single value, and
  820.     lists of strings otherwise.
  821.  
  822.     """
  823.     def __getitem__(self, key):
  824.         if len(self.dict[key]) > 1:
  825.             raise IndexError, 'expecting a single value'
  826.         return self.dict[key][0]
  827.     def getlist(self, key):
  828.         return self.dict[key]
  829.     def values(self):
  830.         result = []
  831.         for value in self.dict.values():
  832.             if len(value) == 1:
  833.                 result.append(value[0])
  834.             else: result.append(value)
  835.         return result
  836.     def items(self):
  837.         result = []
  838.         for key, value in self.dict.items():
  839.             if len(value) == 1:
  840.                 result.append((key, value[0]))
  841.             else: result.append((key, value))
  842.         return result
  843.  
  844.  
  845. class InterpFormContentDict(SvFormContentDict):
  846.     """This class is present for backwards compatibility only."""
  847.     def __getitem__(self, key):
  848.         v = SvFormContentDict.__getitem__(self, key)
  849.         if v[0] in '0123456789+-.':
  850.             try: return int(v)
  851.             except ValueError:
  852.                 try: return float(v)
  853.                 except ValueError: pass
  854.         return v.strip()
  855.     def values(self):
  856.         result = []
  857.         for key in self.keys():
  858.             try:
  859.                 result.append(self[key])
  860.             except IndexError:
  861.                 result.append(self.dict[key])
  862.         return result
  863.     def items(self):
  864.         result = []
  865.         for key in self.keys():
  866.             try:
  867.                 result.append((key, self[key]))
  868.             except IndexError:
  869.                 result.append((key, self.dict[key]))
  870.         return result
  871.  
  872.  
  873. class FormContent(FormContentDict):
  874.     """This class is present for backwards compatibility only."""
  875.     def values(self, key):
  876.         if key in self.dict :return self.dict[key]
  877.         else: return None
  878.     def indexed_value(self, key, location):
  879.         if key in self.dict:
  880.             if len(self.dict[key]) > location:
  881.                 return self.dict[key][location]
  882.             else: return None
  883.         else: return None
  884.     def value(self, key):
  885.         if key in self.dict: return self.dict[key][0]
  886.         else: return None
  887.     def length(self, key):
  888.         return len(self.dict[key])
  889.     def stripped(self, key):
  890.         if key in self.dict: return self.dict[key][0].strip()
  891.         else: return None
  892.     def pars(self):
  893.         return self.dict
  894.  
  895.  
  896. # Test/debug code
  897. # ===============
  898.  
  899. def test(environ=os.environ):
  900.     """Robust test CGI script, usable as main program.
  901.  
  902.     Write minimal HTTP headers and dump all information provided to
  903.     the script in HTML form.
  904.  
  905.     """
  906.     print "Content-type: text/html"
  907.     print
  908.     sys.stderr = sys.stdout
  909.     try:
  910.         form = FieldStorage()   # Replace with other classes to test those
  911.         print_directory()
  912.         print_arguments()
  913.         print_form(form)
  914.         print_environ(environ)
  915.         print_environ_usage()
  916.         def f():
  917.             exec "testing print_exception() -- <I>italics?</I>"
  918.         def g(f=f):
  919.             f()
  920.         print "<H3>What follows is a test, not an actual exception:</H3>"
  921.         g()
  922.     except:
  923.         print_exception()
  924.  
  925.     print "<H1>Second try with a small maxlen...</H1>"
  926.  
  927.     global maxlen
  928.     maxlen = 50
  929.     try:
  930.         form = FieldStorage()   # Replace with other classes to test those
  931.         print_directory()
  932.         print_arguments()
  933.         print_form(form)
  934.         print_environ(environ)
  935.     except:
  936.         print_exception()
  937.  
  938. def print_exception(type=None, value=None, tb=None, limit=None):
  939.     if type is None:
  940.         type, value, tb = sys.exc_info()
  941.     import traceback
  942.     print
  943.     print "<H3>Traceback (most recent call last):</H3>"
  944.     list = traceback.format_tb(tb, limit) + \
  945.            traceback.format_exception_only(type, value)
  946.     print "<PRE>%s<B>%s</B></PRE>" % (
  947.         escape("".join(list[:-1])),
  948.         escape(list[-1]),
  949.         )
  950.     del tb
  951.  
  952. def print_environ(environ=os.environ):
  953.     """Dump the shell environment as HTML."""
  954.     keys = environ.keys()
  955.     keys.sort()
  956.     print
  957.     print "<H3>Shell Environment:</H3>"
  958.     print "<DL>"
  959.     for key in keys:
  960.         print "<DT>", escape(key), "<DD>", escape(environ[key])
  961.     print "</DL>"
  962.     print
  963.  
  964. def print_form(form):
  965.     """Dump the contents of a form as HTML."""
  966.     keys = form.keys()
  967.     keys.sort()
  968.     print
  969.     print "<H3>Form Contents:</H3>"
  970.     if not keys:
  971.         print "<P>No form fields."
  972.     print "<DL>"
  973.     for key in keys:
  974.         print "<DT>" + escape(key) + ":",
  975.         value = form[key]
  976.         print "<i>" + escape(repr(type(value))) + "</i>"
  977.         print "<DD>" + escape(repr(value))
  978.     print "</DL>"
  979.     print
  980.  
  981. def print_directory():
  982.     """Dump the current directory as HTML."""
  983.     print
  984.     print "<H3>Current Working Directory:</H3>"
  985.     try:
  986.         pwd = os.getcwd()
  987.     except os.error, msg:
  988.         print "os.error:", escape(str(msg))
  989.     else:
  990.         print escape(pwd)
  991.     print
  992.  
  993. def print_arguments():
  994.     print
  995.     print "<H3>Command Line Arguments:</H3>"
  996.     print
  997.     print sys.argv
  998.     print
  999.  
  1000. def print_environ_usage():
  1001.     """Dump a list of environment variables used by CGI as HTML."""
  1002.     print """
  1003. <H3>These environment variables could have been set:</H3>
  1004. <UL>
  1005. <LI>AUTH_TYPE
  1006. <LI>CONTENT_LENGTH
  1007. <LI>CONTENT_TYPE
  1008. <LI>DATE_GMT
  1009. <LI>DATE_LOCAL
  1010. <LI>DOCUMENT_NAME
  1011. <LI>DOCUMENT_ROOT
  1012. <LI>DOCUMENT_URI
  1013. <LI>GATEWAY_INTERFACE
  1014. <LI>LAST_MODIFIED
  1015. <LI>PATH
  1016. <LI>PATH_INFO
  1017. <LI>PATH_TRANSLATED
  1018. <LI>QUERY_STRING
  1019. <LI>REMOTE_ADDR
  1020. <LI>REMOTE_HOST
  1021. <LI>REMOTE_IDENT
  1022. <LI>REMOTE_USER
  1023. <LI>REQUEST_METHOD
  1024. <LI>SCRIPT_NAME
  1025. <LI>SERVER_NAME
  1026. <LI>SERVER_PORT
  1027. <LI>SERVER_PROTOCOL
  1028. <LI>SERVER_ROOT
  1029. <LI>SERVER_SOFTWARE
  1030. </UL>
  1031. In addition, HTTP headers sent by the server may be passed in the
  1032. environment as well.  Here are some common variable names:
  1033. <UL>
  1034. <LI>HTTP_ACCEPT
  1035. <LI>HTTP_CONNECTION
  1036. <LI>HTTP_HOST
  1037. <LI>HTTP_PRAGMA
  1038. <LI>HTTP_REFERER
  1039. <LI>HTTP_USER_AGENT
  1040. </UL>
  1041. """
  1042.  
  1043.  
  1044. # Utilities
  1045. # =========
  1046.  
  1047. def escape(s, quote=None):
  1048.     """Replace special characters '&', '<' and '>' by SGML entities."""
  1049.     s = s.replace("&", "&") # Must be done first!
  1050.     s = s.replace("<", "<")
  1051.     s = s.replace(">", ">")
  1052.     if quote:
  1053.         s = s.replace('"', """)
  1054.     return s
  1055.  
  1056. def valid_boundary(s, _vb_pattern="^[ -~]{0,200}[!-~]$"):
  1057.     import re
  1058.     return re.match(_vb_pattern, s)
  1059.  
  1060. # Invoke mainline
  1061. # ===============
  1062.  
  1063. # Call test() when this file is run as a script (not imported as a module)
  1064. if __name__ == '__main__':
  1065.     test()
  1066.